home *** CD-ROM | disk | FTP | other *** search
- !!Script
- // Copyright ⌐ 1997-1998 - Modelworks Software
-
- // Insert script helper for:
-
- /**
- @Object: Lines
- @Method: unfoldLine() - open a folded line.
- @Syntax: unfoldLine(lineIndex)
- @Summary: unfoldLine - open a folded line
- */
-
- function DoCommand()
- {
- var editor = getActiveEditor();
- if (editor)
- {
- var selection = editor.getSelection();
- editor.replace("unfoldLine(lineIndex)", selection);
- editor.setActive("insert unfoldLine");
- }
- }
-
- !!/Script
-